home *** CD-ROM | disk | FTP | other *** search
/ Light ROM 1 / LIGHT-ROM 1 (Amiga Library Services)(1994).iso / ffdisks / d998.lha / TeXPrt / source / TexPrt_globals.h < prev    next >
C/C++ Source or Header  |  1994-04-05  |  3KB  |  59 lines

  1. /***************************************************************************
  2.  *                                                                         *
  3.  *  Filename : TeXPrt_globals.h                                            *
  4.  *                                                                         *
  5.  *  Description : Contains all global data for TeXPrt.                     *
  6.  *                                                                         *
  7.  ***************************************************************************
  8.  *                                                                         *
  9.  *                         Modification History                            *
  10.  *                                                                         *
  11.  *   Date       Author       Comments                                      *
  12.  * ----------------------------------------------------------------------  *
  13.  * 25.10.92   R.Bödi       Created.                                        *
  14.  * 21.2.94    R.Bödi       Changed due to modifications in TeXPrt.h.       *
  15.  *                                                                         *
  16.  ***************************************************************************
  17.  *                                                                         *
  18.  * Copyright © 19xx Richard Bödi,  All rights reserved.                    *
  19.  *                                                                         *
  20.  ***************************************************************************/
  21.  
  22. /*--------------------------- DEFINES -------------------------------------*/
  23.  
  24. #define  VERSION        " V3.00 "
  25.  
  26. /*------------------------- EXTERNAL DATA ---------------------------------*/
  27.  
  28. extern long   __OSlibversion = 37;
  29.  
  30. extern struct DOSBase         *DOSBase;
  31. extern struct IntuitionBase   *IntuitionBase;
  32. extern struct GadToolsBase    *GadToolsBase;
  33. extern struct AslBase         *AslBase;
  34. extern struct WorkbenchBase   *WorkbenchBase;
  35. extern struct Library         *MUIMasterBase;
  36. extern struct Library         *UtilityBase;
  37. extern struct Library         *IconBase;
  38. extern struct MsgPort         *AppMsgPort;
  39.  
  40. extern char  AppName[];
  41. extern char  Version[];
  42. extern char  Title[];
  43. extern char  DriverDrawer[];
  44. extern char  DriverLogo[];
  45. extern char  TeXPrintEnv[];
  46. extern char  RexxPrintMacro[];
  47. extern ULONG IDCMPFlag;
  48.  
  49. extern struct MUI_Command     ARexxCommandList[];
  50. extern struct StructPointers  StructPointers;
  51. extern struct Args            Args;
  52. extern struct Status          Status;
  53.  
  54. extern struct EasyStruct   ConfirmReq, AboutReq, AppIconReq, LoadErrorReq,
  55.                            SaveErrorReq, NoDVIFileReq, QuitReq;
  56.  
  57. /*---------------------------- END OF FILE --------------------------------*/
  58.  
  59.